home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 125 / Computer Shopper CD-ROM Issue 125 (1998-07)(Dennis Publishing).iso / Business / Dazzler / DAZZLER.Z / dazzler.cab / CRectList.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-26  |  570 b   |  23 lines

  1. class CRectList extends CObList {
  2.    boolean removeElement(CRect var1) {
  3.       return super.removeElement(var1);
  4.    }
  5.  
  6.    CRect GetHead() {
  7.       return (CRect)((CObList)this).start();
  8.    }
  9.  
  10.    void Add(CRect var1) {
  11.       CRect var2 = new CRect(var1);
  12.       ((CObList)this).addElement(var2);
  13.    }
  14.  
  15.    CRectList() {
  16.       super(true);
  17.    }
  18.  
  19.    CRect GetNext() {
  20.       return (CRect)((CObList)this).next();
  21.    }
  22. }
  23.